home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / custdisp.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  32 lines

  1. /* RCSVER $Id: custdisp.sql,v 1.2 1999-02-24 11:20:58-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        custdisp.sql
  6. * Date:        02/18/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the custdisp table. This table describes the
  9. *        graphics/text to be displayed to the customer display
  10. *        during idle periods, as well as the effects to use.
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE custdisp
  14. (
  15.                     /* Boolean - is this a bitmap? */
  16.     is_bitmap     NUMBER(1) CHECK (is_bitmap BETWEEN 0 AND 1),
  17.     content        VARCHAR2(25),    /* Name of bitmap or text to display */
  18.     display_time    NUMBER(38),    /* Time to display this */
  19.     intro_efx    NUMBER(38)    /* Beginning effect */
  20.         CONSTRAINT ref1_custdisp REFERENCES introefx(effect)
  21.         ON DELETE CASCADE,
  22.     inplace_efx    NUMBER(38)    /* In-place effect */
  23.         CONSTRAINT ref2_custdisp REFERENCES inplcefx(effect)
  24.         ON DELETE CASCADE,
  25.     concl_efx    NUMBER(38)    /* concluding effects */
  26.         CONSTRAINT ref3_custdisp REFERENCES conclefx(effect)
  27.         ON DELETE CASCADE,
  28.     config_num    NUMBER(38)
  29.         CONSTRAINT ref4_custdisp REFERENCES configset(num)
  30.         ON DELETE CASCADE
  31. );
  32.